home *** CD-ROM | disk | FTP | other *** search
Makefile | 1980-01-04 | 477 b | 26 lines |
- #
- # Makefile for crypt.device
- #
- # Timo Rossi, 1991
- #
- # fdev.device was assembled with the A68k assembler by Charlie Gibbs.
- #
- # createfile was compiled with SAS/C 5.10a
- #
-
- all: crypt.device createfile
-
- OBJ = cryptdev.o idea68k.o
-
- crypt.device: $(OBJ)
- blink from $(OBJ) to crypt.device library lib:amiga.lib lib:debug.lib
-
- cryptdev.o: cryptdev.a
- a68k -iasminc: cryptdev.a
-
- idea68k.o: idea68k.a
- a68k -iasminc: idea68k.a
-
- createfile: createfile.c
- lc -v -csq -s -L createfile.c
-